home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SOURC455.ZIP / RUNBIOSP.BAT < prev    next >
DOS Batch File  |  1992-07-07  |  693b  |  31 lines

  1. echo off
  2. if exist biosp.exe goto run
  3. if exist srfiles.zip goto unzip
  4. echo  ******** Can not locate BIOSP.EXE program ********
  5. goto exit
  6. :unzip
  7. echo _______ One-Time decompression of BIOS Pre-Processor files
  8. pkunzip srfiles.zip
  9. :run
  10. biosp %1 %2 %3 -b
  11. if errorlevel 16 goto exit
  12. echo _________  Copying BIOS Pre-Proceesor output file to BIOS.DEF 
  13. if errorlevel 4 goto mainbios
  14. if errorlevel 2 goto diskbios
  15. if errorlevel 1 goto videobios
  16. copy ubios.def bios.def
  17. goto runsr
  18. :mainbios
  19. copy mbios.def bios.def
  20. goto runsr
  21. :diskbios
  22. copy dbios.def bios.def
  23. goto runsr
  24. :videobios
  25. copy vbios.def bios.def
  26. :runsr
  27. echo _________  Loading SOURCER
  28. sr bios.def %1 %2 %3
  29. :exit
  30.  
  31.